From: Lars Magne Ingebrigtsen Date: Tue, 2 Aug 2011 19:05:04 +0000 (+0200) Subject: Use different faces for marked and flagged files in dired X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~2659 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=9a608842a0a9f488363c2ffff17739d14e9fda5d;p=emacs.git Use different faces for marked and flagged files in dired --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7e07c69040b..70dac2afdbc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2011-08-02 Lars Magne Ingebrigtsen + * dired.el (dired-flagged): Use different faces for marked and + flagged files (bug#6117). + * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block (bug#4433). diff --git a/lisp/dired.el b/lisp/dired.el index 5c3e16ea0db..746c16ff148 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -350,7 +350,7 @@ Subexpression 2 must end right before the \\n or \\r.") "Face name used for marked files.") (defface dired-flagged - '((t (:inherit font-lock-warning-face))) + '((t (:inherit font-lock-variable-name-face))) "Face used for files flagged for deletion." :group 'dired-faces :version "22.1")